I think the basic principle of a PHP templating system is string replacing, right? So can I just use a string to hold my html template code like
$str_template = "<html><head><title>{the_title}</title><body>{the_content}</body></html>"
ve aşağıdaki kodda sadece benim şablon değişkeni gibi içine veri itmek için bir str_replace yapmak
str_replace( $str_template, '{the_title}', $some_runtime_generated_title );
str_replace( $str_template, '{the_content}', $some_runtime_generated_content );
sonra geçen at
echo $str_template;
Bu umarım biraz daha hızlı, tüm değişken geçen süreç yapacak? Ben bu garip bir soru olabilir biliyorum ama herkes bunu denediniz mi?