如题使用php laravel 出现了以下异常: InvalidArgumentException in FileViewFinder.php line 137: View [welcome] not found. 然而经过验证此模板文件的确存在,询问谷哥后解决。 解决方法: 在项目路径下执行以下命令即可解决(当然前提是环境变量配置正确): php artisan cache:clear php artisan view:clear php artisan config:cache -
如题使用php laravel 出现了以下异常: InvalidArgumentException in FileViewFinder.php line 137: View [welcome] not found. 然而经过验证此模板文件的确存在,询问谷哥后解决。 解决方法: 在项目路径下执行以下命令即可解决(当然前提是环境变量配置正确): php artisan cache:clear php artisan view:clear php artisan config:cache -
一、硬件环境 操作系统:Windows10 PHP环境:phpstudy 20161103版 laravel版本:5.3 php版本:PHP Version 5.6.27 nts (Non Thread Safe (NTS) x86) php位数:x86 二、安装php mongodb拓展插件 1、下载php_mongodb.dll 下载地址:http://pecl.php.net/package/mongodb 下载最新版DLL: 选择博主电脑对应的dll版本: 下载解压缩后,将php_mongodb.dll复制…
一、数组分类 1、索引数组 $cars=array("Volvo","BMW","SAAB"); 2、关联数组 $age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43"); 二、索引数组操作 三、关联数组操作 1、添加元素 方法一: $rowResult = array(); $rowResult =$rowResult+ array("a"=>"b"); $rowResult =$rowResult+ array("c"=>"b"…
由于以前写的PHP程序比较少,所以很少使用专门工具进行debug,都在使用die(var_dump())等作死手段,随着改革开放与两学一做的创新,我也用一下专业的debug工具。 一、环境 部署:phpstudy PHP版本: 5.6.27 Apache端口:9090 二、在php.ini中启用xdebug插件 添加内容如下: [XDebug] xdebug.profiler_output_dir="D:\phpStudy20161103\tmp\xdebug" xdebug.trace_output_dir="D…
参考链接 https://github.com/SWJTUopensource/ASPT/blob/master/getattachment.php http://www.cnblogs.com/brucejia/archive/2012/12/24/2831060.html
大神略过~ 有时候,在本地的某框架内添加修改程序时,WEB页面会无法显示错误信息(设置只是php.ini、debug也可以显示,只不过太懒),我们可以在本PHP页面增加几行代码,而使得页面显示PHP Error. error_reporting(E_ALL); ini_set('display_errors', TRUE); ini_set('display_startup_errors', TRUE);
详见:http://php.net/manual/en/book.url.php Example #1 parse_url() 例子 解析URL各类信息,存入数组: 以上例程会输出: Array ( [scheme] => http [host] => hostname [user] => username [pass] => password [path] => /path [query] => arg=value [fragment] => anchor ) Example #2 parse_str() 例子 …
某WEB程序中需要用php 动态产生javascript,但是有一天使用CDN之后,这个就不能用了,谷歌浏览器爆出了一些错误,如下: refused to execute script from 'http://*/common.php' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled. 忽然想到,这个文件没有header标记,随写添加一句: header("Content…
由于需要将IPV6地址计算成long型,将long型计算成IPV6地址,然而PHP没有提供这个函数。不想自己去写,所以bing一次,又得,记之,希望能帮到其他朋友。 文中函数源地址:http://phpsnips.com/466/Aggregate-IP-addresses-and-IP-prefixes,-including-IPv4-and-IPv6-address-notations PHP-Gmp库安装详解:http://php.net/manual/en/gmp.requirements.php ip a…