PHP开发

wamp本地测试环境下fopen url不能用的原因

要使用fopen、getimagesize或include等函数打开一个url,需要对php.ini进行设置,通常设置allow_url_fopen为on允许fopen url,设置allow_url_include为on则允许include/require url,但在本地测试环境下却不一定管用。

问题描述

allow_url_fopen = on

Whether to allow the treatment of URLs 
(like http:// or ftp://) as files.

allow_url_include = on

Whether to allow include/require to open URLs 
(like http:// or ftp://) as files.

在本地wamp测试环境中,这样设置以后,fopen可以正常打开远程地址,但遇到本地的地址却会报错,例如

fopen("http://localhost/myfile.php", "r");

就会在超过php.ini中设置的脚本最长执行时间后报错,告知文件不存在等。这在在线服务器上是不会出现的,但如果将localhost替换成127.0.0.1,却可以正常工作。

从状况看,问题出在DNS解析上,按理说localhost已经自动被映射到127.0.0.1,实际上访问http://localhost和访问http://127.0.0.1也到达同一个地址。

解决的方法就是检查一下Windows的host文件,通常位于system32目录下,一个系统盘是C盘的host路径如下所示

C:\Windows\System32\drivers\etc\hosts

打开hosts文件,用记事本或者notepad++等工具

将下面的127.0.0.1前面的#去掉即可。

# localhost name resolution is handled within DNS itself.
#	127.0.0.1       localhost

将url视为文件有什么用

比如给include的文件传值,可以这样

<?php include 'http://yourdomain.com/
example.inc.php?foo=1&bar=2'; ?>

在example.inc.php中

<?php
	var_dump($_GET['foo']);
	var_dump($_GET['bar']);
?>

运行结果

string(1) "1" string(1) "2" 

3条评论

  1. 在functions.php里加一段代码就行

    function my_print_script() {	
    	wp_deregister_script('jquery');
    	wp_register_script('jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js', false, '1.7.1');
    	wp_enqueue_script('jquery');
    }
    add_action('wp_enqueue_scripts', 'my_print_script');

    WP官网文档有详细说明

  2. sola,我看你这个站只加了 google 的jquery脚本,没有加WP内置的Jquery,怎么做到的? 我最近发现自己写的脚本在WP内置的JQuery下无效,在 google 的 jquery 下倒是有效的。

评论已关闭。