91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用python怎么調用php文件中的函數

發布時間:2020-12-29 13:55:00 來源:億速云 閱讀:298 作者:Leah 欄目:開發技術

本篇文章為大家展示了利用python怎么調用php文件中的函數,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

測試環境

1、操作系統:macos10.13.2

2、php版本:PHP 7.1.7(mac自帶)

3、python版本:python3.6.0

4、python庫:subprocess

調用php函數

php命令行調用php文件中的函數

php文件:test_hello.php

<?php


function hello_world($s1)
{
	$str1 = $s1;
	echo $str1;
	echo "\n";
}

function hello_world2($s1, $s2)
{
	$str1 = $s1;
	$str2 = $s2;
	echo $s1;
	echo "**********";
	echo $s2;
	echo "\n";
}

// 獲取參數,索引為0為調用的文件路徑,索引為1為調用的函數,索引為2為函數傳入參數$s1,索引為3為函數參數$s2

var_dump($argv);
// exit;

// 調用函數
$func_name = $argv[1];


if ($func_name == "hello_world")
{
	// 參數1
	$param1 = $argv[2];
	hello_world($param1);
}
elseif ($func_name == "hello_world2")
{
	// 參數1
	$param1 = $argv[2];
	// 參數2
	$param2 = $argv[3];
 hello_world2($param1, $param2);
}
else
{
 echo "the function $func_name is not exist !";
}

?>

terminal執行php命令

# 字符串中包含空格、逗號、反斜杠,需要使用""來確定為1個參數
php -f test_hello.php hello_world "My name is John\\, age is 20."
php -f test_hello.php hello_world2 "My name is John\\, age is 20." "My hometown is BaoDing."
php -f test_hello.php hello_world3 "My name is John\\, age is 20."

執行結果

利用python怎么調用php文件中的函數

python子進程執行php命令行

python文件:test.py,將test_hello.php與test.py放在同目錄下運行

import subprocess


class Test(object):
 def run(self, cmd):
 proc = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE) # 開啟子進程
 res = proc.stdout.read()
 if res:
  res = res.decode()
 return res


cmd1 = 'php -f test_hello.php hello_world "My name is John\\, age is 20."'
cmd2 = 'php -f test_hello.php hello_world2 "My name is John\\, age is 20." "My hometown is BaoDing."'
cmd3 = 'php -f test_hello.php hello_world3 "My name is John\\, age is 20."'
obj = Test()
for i in [cmd1, cmd2, cmd3]:
 res = obj.run(cmd1)
 print(res)
 print("*" * 10)

上述內容就是利用python怎么調用php文件中的函數,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

雷州市| 广平县| 馆陶县| 潍坊市| 扶余县| 县级市| 白朗县| 乃东县| 石首市| 保康县| 岫岩| 北海市| 大悟县| 阿鲁科尔沁旗| 高淳县| 阳泉市| 竹山县| 清原| 旬邑县| 南城县| 青铜峡市| 突泉县| 东辽县| 衡阳市| 隆安县| 兰州市| 沙河市| 泽普县| 五家渠市| 宿迁市| 嘉定区| 双城市| 新沂市| 左权县| 乡宁县| 柯坪县| 晴隆县| 长葛市| 清丰县| 霍城县| 济宁市|