คุณสามารถใช้strtok
เพื่อรับสายก่อนเกิดครั้งแรกของ?
$url = strtok($_SERVER["REQUEST_URI"], '?');
strtok()
แสดงให้เห็นถึงเทคนิคที่รัดกุมที่สุดในการแยกสตริงย่อยโดยตรงก่อนที่จะ?
ในสตริงการสืบค้น explode()
ไม่ตรงเนื่องจากจะต้องสร้างอาเรย์สององค์ประกอบที่จะต้องเข้าถึงองค์ประกอบแรก
เทคนิคอื่น ๆ บางอย่างอาจผิดพลาดเมื่อไม่มีการสืบค้นหรืออาจกลายเป็นสตริงย่อยอื่น ๆ / ไม่ตั้งใจใน url - เทคนิคเหล่านี้ควรหลีกเลี่ยง
การสาธิต :
$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";
}
เอาท์พุท:
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
)
---