python 은 php 파일 의 함 수 를 어떻게 호출 하 는 지 상세 하 게 설명 합 니 다.

2910 단어 python호출php
머리말
python 호출 phop 코드 구현 사고:phop 파일 은 terminal 에서 phop 명령 행 을 사용 하여 호출 할 수 있 기 때문에 python 을 사용 하여 하위 프로 세 스 실행 명령 행 코드 를 열 수 있 습 니 다.함수 에 필요 한 인 자 는 명령 행 을 통 해 전달 할 수 있 습 니 다.
테스트 환경
1.운영 체제:macos 10.13.2
2.php 버 전:PHP 7.1.7(mac 자체 테이프)
3,python 버 전:python 3.6.0
4,python 라 이브 러 리:subprocess
php 함수 호출
php 명령 행 에서 php 파일 의 함 수 를 호출 합 니 다.
php 파일:testhello.php

<?php


function hello_world($s1)
{
	$str1 = $s1;
	echo $str1;
	echo "
"; } function hello_world2($s1, $s2) { $str1 = $s1; $str2 = $s2; echo $s1; echo "**********"; echo $s2; echo "
"; } // , 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 파일:test.py,testhello.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 이 phop 파일 의 함 수 를 어떻게 호출 하 는 지 에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 python 이 phop 함수 내용 을 호출 하 는 것 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 지원 을 바 랍 니 다!

좋은 웹페이지 즐겨찾기