解析目录和输出列表中的文件(例如:tinymce emoticons/emotations)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解析目录和输出列表中的文件(例如:tinymce emoticons/emotations)相关的知识,希望对你有一定的参考价值。

run this from plugins/emotions and copy/paste the output to emotions.htm
  1. <?php
  2. $handle=opendir("img");
  3.  
  4. $i = 0;
  5. while (($file = readdir($handle))!==false) {
  6.  
  7. $imagesizes = getimagesize('img/'.$file);
  8. $width = $imagesizes[0];
  9. $height = $imagesizes[1];
  10.  
  11. echo " <td><a href="javascript:EmotionsDialog.insert('$file','$file-0');"><img src="img/$file" width="$width" height="$height" border="0" alt="{#$file-0}" title="{#$file-0}" /></a></td>"." ";
  12. if( $i%4 == 0 ) {
  13. echo '</tr>';
  14. }
  15. if( ($i+4)%4 == 0 ) {
  16. echo '<tr>'." ";
  17. }
  18.  
  19. $i++;
  20. }
  21.  
  22. closedir($handle);
  23. ?>

以上是关于解析目录和输出列表中的文件(例如:tinymce emoticons/emotations)的主要内容,如果未能解决你的问题,请参考以下文章

Tinymce-如何让用户知道快捷方式

TinyMCE 从不正确的目录加载 lang/plugins/theme

powershell 这将遍历目录中的文件列表,解析文件的名称,并根据解析的名称创建新文件。氏

在 TinyMCE 中的元素旁边显示一个按钮

使用 MediaInfo 命令行和 jq 从文件目录构建有效的 JSON 播放列表

tinymce 和列表项的问题