[lang-ref] カラ文字列 ( php )
<?php
public function testAssignEmptyString(): void
{
// '', ""
$s = '';
$this->assertSame('', $s);
$this->assertSame('', "");
}
<?php
public function testAssignEmptyString(): void
{
// '', ""
$s = '';
$this->assertSame('', $s);
$this->assertSame('', "");
}