php 用于显示外部文件的短代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 用于显示外部文件的短代码相关的知识,希望对你有一定的参考价值。

function show_file_func( $atts ) {
  extract( shortcode_atts( array(
    'file' => ''
  ), $atts ) );
 
  if ($file!='')
    return @file_get_contents($file);
}
 
add_shortcode( 'show_file', 'show_file_func' );

以上是关于php 用于显示外部文件的短代码的主要内容,如果未能解决你的问题,请参考以下文章

php 用于嵌入YouTube视频的短代码

DateFormatSymbols - 在 Tomcat 容器中/外部运行时的短月不同

PHP 和 MySQL 中的短 URL 出站链接跟踪

php PHP中的短代码

在 WordPress 中创建具有某些属性的短代码

如何将 php 代码插入 HTML 中的短代码?