PHPで文字列がnullかどうかを知りたいのですが、このコードを使用しています。
更新: 作業コード、ご協力ありがとうございます。
<?php
//Syntax blah.php?request=Value to log here
//iPwnStore
$request = $_GET['iPwnStore'];
if(empty($request))
{
echo "Error, string is null!";
//It always comes done to the Error, allthough $request isn't nil
}
else
{
file_put_contents('iPwnStore.txt', $request1."\n\n", FILE_APPEND);
echo "Success";
}
?>