刚学PHP,不知道配合那种网页编辑器最好用?大家都在用那些?解决办法
刚学PHP,不知道配合那种网页编辑器最好用?大家都在用那些?
刚学PHP,PHP的编辑器倒不少,,但是不知道配合那种网页编辑器最好用?从网上下来很多网页框架,,我想问用那些可修改所见即所得网页编辑器直接修改成我需要的东西,当然能配合PHP代码插入的,,, 大家都在用那些?
谢谢!,,,太多的的工具了,,不知道那个比较好用??
------解决方案--------------------
thinkphp + FCKEditor 昨晚刚刚弄了一个,觉得不错
------解决方案--------------------
以前用 fckedtor
现在用 ckedtor
------解决方案--------------------
fckeditor ckeditor都行吧
------解决方案--------------------
kindedit
------解决方案--------------------
自己编写,编个类似csdn的还是没问题的
------解决方案--------------------
随便选一个呗!!
------解决方案--------------------
随便选一个呗!!
------解决方案--------------------
zend的编辑器。
------解决方案--------------------
kindEditor 最好,配置超简单
------解决方案--------------------
添一笔,kindEditor
------解决方案--------------------
看看例子,你就知道用啥了
http://ckeditor.com/demo
------解决方案--------------------
editplus
------解决方案--------------------
根据《第二届PHP中国开源发展及人才状况调查报告》中对从业者开发PHP所使用的IDE环境的统计数据分析,其中67.7%的PHP从业者是在 Zend Studio环境下开发PHP,另有27.7%的从业者在Eclipse环境下开发PHP,使用过PHPEdit的从业者比例是23.6%,在 EditPlus下开发PHP项目的有11.6%。PhpED、komodo的使用率分别为5.1%和2.5%。根据这项调查结果,我来介绍一下排名前五位的Web2.0网站开发工具。
可以去php新手入门网看看具体内容:http://www.phpnewer.com/index.php/Yjxw/detail/id/561
------解决方案--------------------
zendstdio
------解决方案--------------------
Netbeans
------解决方案--------------------
济南路路口就弄了没看LM
------解决方案--------------------
------解决方案--------------------
editplus这个不错,我也是亲手,现在天天用这个,希望你喜欢,可以去Php100下载,中文的简单、实在 !
------解决方案--------------------
楼主问的是编辑器还是在线编辑器?
大家的回答分两个方向啊
------解决方案--------------------
sublime text 2
神器,不解释。
------解决方案--------------------
Lz好像把编辑器搞混淆了,你问IDE不就得了么,汗,使用vim的撸过,看了介么久,居然没有发现有人使用vim的.vim手写速度超快,也可以独立配置成功能强大的IDE

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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

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

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

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

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
