PHP: Localization
Instructions
Loading...
Your exercise will be checked with these tests:
<?php
namespace HexletBasics\DeepIntoStrings\Locales;
use PHPUnit\Framework\TestCase;
class SolutionTest extends TestCase
{
public function test()
{
$expected = setlocale(LC_CTYPE, 0);
$this->expectOutputString($expected);
require 'index.php';
}
}
Teacher's solution will be available in:
20:00
