サンプルコード
if (strpos($tmp, "<pre>") === 0) {
// $tmpの内容が<pre>ではじまる場合の処理
}
参考
https://www.delftstack.com/ja/howto/php/how-to-check-if-a-string-starts-with-a-specified-string-in-php/
if (strpos($tmp, "<pre>") === 0) {
// $tmpの内容が<pre>ではじまる場合の処理
}