本文整理汇总了PHP中invoice::pay方法的典型用法代码示例。如果您正苦于以下问题:PHP invoice::pay方法的具体用法?PHP invoice::pay怎么用?PHP invoice::pay使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类invoice
的用法示例。
在下文中一共展示了invoice::pay方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: explode
// Cheap. I know.
if (!is_dir("../includes") && !is_dir("../themes") && !is_dir("../" . ADMINDIR)) {
$check = explode("/", dirname($_SERVER["SCRIPT_NAME"]));
if ($check[count($check) - 1] == "install") {
die("Please change your THT directory's name from something else other than \"install\". Please?");
}
}
if (FOLDER != "install" && FOLDER != "includes" && INSTALL != 1) {
// Lets just redirect to the installer, shall we?
$installURL = INC . "../install";
header("Location: {$installURL}");
}
$_SESSION['errors'] = 0;
// If payment..
if (FOLDER == "client" && $getvar['page'] == "invoices" && $getvar['iid'] && $_SESSION['clogged'] == 1) {
invoice::pay($getvar['iid'], "client/index.php?page=invoices");
echo "You made it this far.. something went wrong.";
}
function checkForDependencies()
{
$needed = array();
$version = explode(".", phpversion());
if ($version[0] < 5) {
die("PHP Version 5 or greater is required! You're currently running: " . phpversion());
}
if (!function_exists("curl_init")) {
$needed[] = "cURL";
}
if (!function_exists("mysqli_connect")) {
$needed[] = "MySQLi";
}