国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Home Backend Development PHP Tutorial 抉擇什么PHP框架

抉擇什么PHP框架

Jun 13, 2016 pm 12:29 PM
laravel nbsp php thinkphp

選擇什么PHP框架
asp.net?已經(jīng)做過(guò)很多項(xiàng)目了,最近做手機(jī)APP開(kāi)發(fā),需要SAE運(yùn)行一些后臺(tái)運(yùn)營(yíng)的管理,又不想自己架設(shè)服務(wù)器,希望在SAE上部署,只要支持APP的用戶(hù)注冊(cè)信息,給APP用戶(hù)推送信息等較為簡(jiǎn)單功能。

SAE支持PHP?所以想最快速度搭建這個(gè)運(yùn)營(yíng)管理功能,大家推薦使用哪個(gè)PHP框架能快速上手,且框架性能不錯(cuò)。

大家推薦PHP開(kāi)發(fā)使用什么IDE比較好,感謝。?本人只有32分了,希望大家不要嫌分少。yaf吧,高效。http://yafdev.com?作者是鳥(niǎo)哥,php開(kāi)發(fā)團(tuán)隊(duì)成員,微博也是用這個(gè)框架的。IDE用zend10.0還不錯(cuò)吧。二次開(kāi)發(fā)的話(huà)直接用phpcms或者dedecms,如不想二次開(kāi)發(fā),國(guó)內(nèi)輕量型框架tp不錯(cuò),而且還有tpm支持移動(dòng)端。用thinkphp,畢竟國(guó)產(chǎn)的。最近國(guó)外做的一個(gè)調(diào)查和分析:http://www.sitepoint.com/best-php-frameworks-2014/

推薦了三款:Laravel?Phalcon?Symfony2看推薦的框架可以看出各個(gè)PHP社區(qū)用戶(hù)的平均水平tp?Yii都不錯(cuò)

引用:
看推薦的框架可以看出各個(gè)PHP社區(qū)用戶(hù)的平均水平


檔次在哪里? 工具試試phpstorm吧,框架:ci,tp,laravel。我感覺(jué)是這樣。國(guó)內(nèi)的現(xiàn)在好像就是tp了現(xiàn)在主流的開(kāi)發(fā)都是thinkphp使用thinkphp吧,在云平臺(tái)上有支持的版本,而且如果想做非原生客戶(hù)端,可以用這個(gè)比較方便。
引用:
現(xiàn)在主流的開(kāi)發(fā)都是thinkphp
主流????哥笑了哪個(gè)框架都可以的,tp在于簡(jiǎn)單容易上手,而且國(guó)內(nèi)開(kāi)發(fā)的,英語(yǔ)不好的可以用這個(gè)我覺(jué)得,文檔資料比較好找開(kāi)發(fā)推薦thinkphp,還有個(gè)基于thinkphp內(nèi)容管理框架thinkcmf,出了框架還多個(gè)基礎(chǔ)的管理功能
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

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

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Your First PHP Script: A Practical Introduction Your First PHP Script: A Practical Introduction Jul 16, 2025 am 03:42 AM

How to start writing your first PHP script? First, set up the local development environment, install XAMPP/MAMP/LAMP, and use a text editor to understand the server's running principle. Secondly, create a file called hello.php, enter the basic code and run the test. Third, learn to use PHP and HTML to achieve dynamic content output. Finally, pay attention to common errors such as missing semicolons, citation issues, and file extension errors, and enable error reports for debugging.

What is PHP and What is it Used For? What is PHP and What is it Used For? Jul 16, 2025 am 03:45 AM

PHPisaserver-sidescriptinglanguageusedforwebdevelopment,especiallyfordynamicwebsitesandCMSplatformslikeWordPress.Itrunsontheserver,processesdata,interactswithdatabases,andsendsHTMLtobrowsers.Commonusesincludeuserauthentication,e-commerceplatforms,for

PHP 8 Installation Guide PHP 8 Installation Guide Jul 16, 2025 am 03:41 AM

The steps to install PHP8 on Ubuntu are: 1. Update the software package list; 2. Install PHP8 and basic components; 3. Check the version to confirm that the installation is successful; 4. Install additional modules as needed. Windows users can download and decompress the ZIP package, then modify the configuration file, enable extensions, and add the path to environment variables. macOS users recommend using Homebrew to install, and perform steps such as adding tap, installing PHP8, setting the default version and verifying the version. Although the installation methods are different under different systems, the process is clear, so you can choose the right method according to the purpose.

How Do You Handle File Operations (Reading/Writing) in PHP? How Do You Handle File Operations (Reading/Writing) in PHP? Jul 16, 2025 am 03:48 AM

TohandlefileoperationsinPHP,useappropriatefunctionsandmodes.1.Toreadafile,usefile_get_contents()forsmallfilesorfgets()inaloopforline-by-lineprocessing.2.Towritetoafile,usefile_put_contents()forsimplewritesorappendingwiththeFILE_APPENDflag,orfwrite()w

Handling HTTP Requests and Responses in Laravel. Handling HTTP Requests and Responses in Laravel. Jul 16, 2025 am 03:21 AM

The core of handling HTTP requests and responses in Laravel is to master the acquisition of request data, response return and file upload. 1. When receiving request data, you can inject the Request instance through type prompts and use input() or magic methods to obtain fields, and combine validate() or form request classes for verification; 2. Return response supports strings, views, JSON, responses with status codes and headers and redirect operations; 3. When processing file uploads, you need to use the file() method and store() to store files. Before uploading, you should verify the file type and size, and the storage path can be saved to the database.

Advanced PHP Multiline Comment Techniques Advanced PHP Multiline Comment Techniques Jul 17, 2025 am 04:14 AM

UsemultilinecommentsinPHPforfunction/classdocumentation,codedebugging,andfileheaderswhileavoidingcommonpitfalls.First,documentfunctionsandclasseswith/*...*/toexplainpurpose,parameters,andreturnvalues,aidingreadabilityandenablingIDEintegration.Second,

How to perform Request Validation in Laravel? How to perform Request Validation in Laravel? Jul 16, 2025 am 03:03 AM

There are two main methods for request verification in Laravel: controller verification and form request classes. 1. The validate() method in the controller is suitable for simple scenarios, directly passing in rules and automatically returning errors; 2. The FormRequest class is suitable for complex or reusable scenarios, creating classes through Artisan and defining rules in rules() to achieve code decoupling and reusing; 3. The error prompts can be customized through messages() to improve user experience; 4. Defining field alias through attributes() to make the error message more friendly; the two methods have their advantages and disadvantages, and the appropriate solution should be selected according to project needs.

PHP Variable Scope Explained PHP Variable Scope Explained Jul 17, 2025 am 04:16 AM

Common problems and solutions for PHP variable scope include: 1. The global variable cannot be accessed within the function, and it needs to be passed in using the global keyword or parameter; 2. The static variable is declared with static, and it is only initialized once and the value is maintained between multiple calls; 3. Hyperglobal variables such as $_GET and $_POST can be used directly in any scope, but you need to pay attention to safe filtering; 4. Anonymous functions need to introduce parent scope variables through the use keyword, and when modifying external variables, you need to pass a reference. Mastering these rules can help avoid errors and improve code stability.

See all articles