欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php中调用其他系统http接口的方法说明_PHP

程序员文章站 2022-06-11 08:09:38
...
使用函数: file_get_contents($url);

传入接口url及其参数:如

$url="http://192.168.1.1/test.jsp?id=1&type=2";

$ret=file_get_contents($url);

相关标签: php调用接口