<?php
$string = "1/your/string/here";
if (preg_match('/^\//', $string)) {
echo "字符串以斜线开始。";
} else {
echo "字符串不以斜线开始。";
}
function endsWithSlash($string) {
return preg_match('/\/$/', $string);
}
$testString = "example/string/";
if (endsWithSlash($testString)) {
echo "字符串以'/'结尾";
} else {
echo "字符串不以'/'结尾";
}
function isSlashStartOrEnd($string) {
return preg_match('/^\/|\/$/', $string);
}
$testStrings = [
'/start',
'end/',
'no slash',
'/both/',
'middle/'
];
foreach ($testStrings as $testString) {
if (isSlashStartOrEnd($testString)) {
echo "字符串 '{$testString}' 以'/'开头或结尾\n";
} else {
echo "字符串 '{$testString}' 不以'/'开头也不结尾\n";
}
}
$pattern = '~^/+~';
$replacement = '';
$subject = 'this/is/a/test/string';
$result = preg_replace($pattern, $replacement, $subject);
echo $result;
function removeTrailingSlash($url) {
return preg_replace('/\/$/', '', $url);
}
$url = "http://example.com/";
$newUrl = removeTrailingSlash($url);
echo $newUrl;
function replaceSlashes($str) {
return preg_replace('/(^\/+|\/+$)/', '|', $str);
}
$input = "/this/is/a/test/string/";
$output = replaceSlashes($input);
echo $output;