首先,我不希望这个问题对于stackoverflow来说太愚蠢,但我对php很新,并且没有太多经验。
我有文件getcwd()
和文件page.php
,我希望使用特定参数运行文件sendTestMail.php
。
我正在呼叫sendTestMail.php
:
sendTestMail.php
我需要设置两个数组参数 require_once WPGAMAIL_PATH.'sendTestMail.php';
和$wp_set
。
有什么最佳实践解决方案的建议吗?
感谢您的回复!
答案 0 :(得分:1)
你有很多可能性,但不知道你的sendTestMail.php中的结构我只能给你提示。
你基本上应该在sendTestMail.php中创建一个函数 - 例如
<?php
function sendTestMail($wp_set, $ga_set) {
/* your actual code ...*/
}
如果你现在需要脚本,你可以简单地调用函数传递参数
<?php
require_once WPGAMAIL_PATH.'sendTestMail.php';
sendTestMail('john', 'doe'); // or whatever your parameters are
可以在此处找到有关如何将变量传递到包含/所需文件的其他示例