<?php
$dirName = 'test';
$fileName = 'test.xml';
$filesInDir = scandir(__DIR__);
if (!in_array($dirName, $filesInDir)){
$path = __DIR__ . '/' . $dirName;
mkdir($path);
$filesInPath = scandir($path);
if (!in_array($fileName, $filesInPath)){
$text = "Any text";
$fp = fopen($path . '/' . $fileName, "w");
fwrite($fp, $text);
fclose($fp);
}
}
?>
find . -name \*.php -exec php -l "{}" \;
class HelloTest extends \PHPUnit_Framework_TestCase
{
public function testHello()
{
$expect = "HelloWorld";
$command = new Command();
$result = $command->helloWorld();
$this->assertEquals($result, $expect);
}
}
True
. И присвой переменной результат функции. Потом в шаблоне, если переменная равна True
, сделай редирект с помощью js.<?php if ($regStatus === true): ?>
<script>
window.location.href = '/site/login';
</script>
<?php endif;?>