file_get_contents() 函数把整个文件读入一个字符串中。
和 file() 一样,不同的是 file_get_contents() 把文件读入一个字符串。
file_get_contents() 函数是用于将文件的内容读入到一个字符串中的首选方法。如果操作系统支持,还会使用内存映射技术来增强性能。
本篇文章主要使用file_get_contents函数调用其他系统http接口,具体如下
传入接口url及其参数:如
$url="http://192.168.1.1/test.jsp?id=1&type=2"; $ret=file_get_contents($url);
Atas ialah kandungan terperinci php中调用其他系统http接口的使用方法. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!