独家:PHP开发工具JetBrains Web IDE预览版发布
【CSDN 8月19日快讯】近日,捷克软件开发公司Jetbrains发布了最新的web编写和PHP编程专业开发环境JetBrains Web IDE的前期预览支持计划版(Early Access Program,EAP)。JetBrains Web IDE是IntelliJ IDEA平台之上构建的第三款产品,之前是RubyMine(Ruby o
【CSDN 8月19日快讯】近日,捷克软件开发公司Jetbrains发布了最新的web编写和PHP编程专业开发环境JetBrains Web IDE的前期预览支持计划版(Early Access Program,EAP)。JetBrains Web IDE是IntelliJ IDEA平台之上构建的第三款产品,之前是RubyMine(Ruby on Rails IDE)和MPS(Meta Programming System)。此次发布意味着Web IDE继承了IntelliJ IDEA的高级特性,如编辑HTML,CSS,JavaScript,XML,与VCS,SQL协同工作,加入对扩展PHP的支持以及其他一些针对web开发的工具。
JetBrains Web IDE 1.0正式版将于今年第四季度发布,有两个版本:标准版和PHP开发者版。标准版包含了web和JavaScript开发者以及其他代码编写人员在开发工作中可能用到的所有东西。PHP开发者版为PHP开发(语法和错误高亮显示、导航巡览、代码自动完成、重构、debugger等等)提供了额外的高级代码编写帮助,还有与数据库协同工作的必要组件。
JetBrains还欢迎大家加入到JetBrains Web IDE前期预览支持计划版的后续开发工作中去。(编译/Wilson)

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

To work on file upload we are going to use the form helper. Here, is an example for file upload.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP is an open source MVC framework. It makes developing, deploying and maintaining applications much easier. CakePHP has a number of libraries to reduce the overload of most common tasks.

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total
