さて、私は自分のphpプログラム/phpファイルを.exe出力に変換しようとしているので、どこにいてもファイルを渡した人なら誰でも実行できます。それは私の側で完全に機能します。しかし、友人が自分のコンピューターで同じ .exe ファイルを実行すると、データベースに接続できないというエラーが表示されます。追加のソフトウェアなどをダウンロードすることなく、彼にプログラムにアクセスしてもらいたい. 考えられる解決策をいくつか読んでみましたが、これをデータベース接続コードに含める必要があることを示唆するものを見つけました。また、Server2go を使用して機能させました。
<?php
// ExeOutput for PHP: MySQL sample using the WAMP package Server2Go
// By default, Server2go comes with a sample database. Root admin is not password-protected.
$mysqlusername = "root";
$mysqlpass = "";
// Do not modify the following lines
$mysqlport = getenv('S2G_MYSQL_PORT');
$mysqlhost = "localhost:".$mysqlport;
// We verify that our ExeOutput application was started by Server2go, otherwise, the MySQL server may not have started.
if (empty($mysqlport)) die("This application cannot be started directly. Programmers: please use the Server2go EXE file, it will start this application automatically.");
?>
問題は、現在持っている接続コードに適切に統合する方法がわからないことです。エラーは常に $conn = mysqli_connect....portion を指します。これが私の既存の接続コードです。提案されたソリューションを統合するにはどうすればよいですか?
<?php
function db_connect()
{
$host = "localhost";
$user = "root";
$password = "";
$database = "csv_db";
$conn = mysqli_connect($host, $user, $password, $database);
if ($conn == FALSE)
{
echo "Error: Unable to connect to the database!";
return NULL;
}
return $conn;
}
function db_disconnect($conn)
{
mysqli_close($conn);
return;
}
function checkUserAccessCookie()
{
/* Check if the user has the "userAccess" cookie (set during login) */
if (isset($_COOKIE["userAccess"]))
{
return true;
}
return false;
}
function getDefaultUserFromCookie()
{
/* If the user has been here before, then a cookie named "userLogin"
* with the user's username will be available. */
if (isset($_COOKIE["userLogin"]))
{
return $_COOKIE["userLogin"];
}
/* If the cookie does not exist, then return blank instead */
return "";
}
?>