$name = substr($name, 0, -strlen($ext)) . "_medium." . end(explode('.',$name));
上記のコードは標準的な警告を発し、以下のような小さなスクリプトを報告します。
function medium($name) {
$ext = strrchr($name, '.');
if($ext !== false) {
$name = substr($name, 0, -strlen($ext)) . "_medium." . end(explode('.',$name));
}
return $name;
}
function thumb($name) {
$ext = strrchr($name, '.');
if($ext !== false) {
$name = substr($name, 0, -strlen($ext)) . "_thumb." . end(explode('.',$name));
}
return $name;
}
function name_remove($name) {
$name = str_replace("_medium", "", $name);
$name = str_replace("_thumb", "", $name);
return $name;
}
この警告を修正するにはどうすればよいですか? 助けが必要 :)