strtok
Dizisinin ilk oluşumundan önce dize almak için kullanabilirsiniz?
$url = strtok($_SERVER["REQUEST_URI"], '?');
strtok()
alt dizeyi ?
sorgu dizgisinden önce doğrudan ayıklamak için en özlü tekniği temsil eder . explode()
ilk öğeye erişilmesi gereken potansiyel olarak iki öğeli bir dizi üretmesi gerektiğinden daha az doğrudandır.
Sorgu dizesi eksik olduğunda veya url'deki diğer / istenmeyen alt dizeleri potansiyel olarak mutasyona uğratırsa diğer bazı teknikler kırılabilir - bu tekniklerden kaçınılmalıdır.
Bir gösteri :
$urls = [
'www.example.com/myurl.html?unwantedthngs#hastag',
'www.example.com/myurl.html'
];
foreach ($urls as $url) {
var_export(['strtok: ', strtok($url, '?')]);
echo "\n";
var_export(['strstr/true: ', strstr($url, '?', true)]); // not reliable
echo "\n";
var_export(['explode/2: ', explode('?', $url, 2)[0]]); // limit allows func to stop searching after first encounter
echo "\n";
var_export(['substr/strrpos: ', substr($url, 0, strrpos( $url, "?"))]); // not reliable; still not with strpos()
echo "\n---\n";
}
Çıktı:
array (
0 => 'strtok: ',
1 => 'www.example.com/myurl.html',
)
array (
0 => 'strstr/true: ',
1 => 'www.example.com/myurl.html',
)
array (
0 => 'explode/2: ',
1 => 'www.example.com/myurl.html',
)
array (
0 => 'substr/strrpos: ',
1 => 'www.example.com/myurl.html',
)
---
array (
0 => 'strtok: ',
1 => 'www.example.com/myurl.html',
)
array (
0 => 'strstr/true: ',
1 => false, // bad news
)
array (
0 => 'explode/2: ',
1 => 'www.example.com/myurl.html',
)
array (
0 => 'substr/strrpos: ',
1 => '', // bad news
)
---