Patlayabilir ve bir satır kod bir değer elde

3 Cevap php

Eğer bir kod satırında aşağıdaki yazabilir miyim?

$foo = explode(":", $foo);
$foo = $foo[0];

3 Cevap

Eğer stristr Bunun için kullanabilirsiniz:

$foo = stristr($foo,":",true);

":" true bunun ilk örneği önce her şeyi vermeye ayarlar nerede

Alternatif () Listeye olarak, kullanabilirsiniz array_shift()

$foo = array_shift(explode(':', $foo));