By admin, 21 十二月, 2023 How to Install PHP 8.3 on Ubuntu 22.04 or 20.04 https://www.linuxcapable.com/how-to-install-php-8-3-on-ubuntu-linux/ 标签 PHP
By admin, 23 八月, 2018 How to Install the PHP Stats Extension // 如果有多个php版本,需要确认pecl是目标php的版本 pecl install stats-2.0.3 echo extension=stats.so > /etc/php/7.0/mods-available/stats.ini ln -s /etc/php/7.0/mods-available/stats.ini /etc/php/7.0/fpm/conf/30-stats.ini https://serverpilot.io/docs/how-to-install-the-php-stats-extension 标签 PHP
By admin, 26 七月, 2017 Laravel 5.4 From Scratch视频教程系列 https://laracasts.com/series/laravel-from-scratch-2017 标签 Laravel PHP
By admin, 24 七月, 2017 Laravel 5入门:MVC框架 本文基于Laravel 5.4编写。Laravel 4.2的入门教程请参看:Laravel 4入门:MVC框架 1. Welcome页面的路由及代码 安装完并访问Laravel框架首页(假设URL http://localhost/ 映射到<path>/<to>/<laravel>/public/),可以看到如下页面: 标签 PHP
By admin, 28 三月, 2016 Laravel 4入门:MVC框架 本文基于Laravel 4.2编写,Laravel 5的教程请参考:Laravel 5入门:MVC框架 1. 路由Hello World 在app/routes.php里面添加下面代码,然后在浏览器里访问http://<laravel host prefix>/helloworld可以见到结果。 Route::get('/helloworld', function() { return '<html><body>hello world</body></html>'; }); 标签 PHP
最新评论