试试这个:
http://www.derickrethans.nl/vld.php

解决方案 »

  1.   

    It's not hard to use this extension, but it might not work with all PHP versions. Here are the instructions to get it to work: Unpack the tarball: tar -xzf vld-0.8.0.tgz. 
    cd into the newly created directory. 
    Create the configure script: phpize 
    Now run "./configure" followed by "make install". 
    That's it, if you now run PHP from the command line and add the -dvld.active=1 parameter VLD will spit out the opcodes: php -dvld.active=1 program.php这个看不明白啊,5555
    请帮忙看一下。
      

  2.   

    想找就去chinaz.com。
    楼主文不对题。
      

  3.   

    开始的时候是对题的啊,后来kkeemmgg(意识流) 给出一下读取ZEND的办法,也是值得参考啊,没有不对题吧。
      

  4.   

    你生成下拉列表都会了,那么显示不也是一样的吗?
    只需像你那样根据默认值取出对应的JOB即可function getData( default )
    {
      for(var i = 0;i < job.length;i ++)
      {
        if(default == job_num[i])
           return job[i];
      }
      return false;
    }显示的时候
    <td>getData('1')</td>
    这个1是你从数据库取出来并写在这个地方的
      

  5.   

    如是一个页面里同时用了好几个job.js这样的呢,那应该怎么写会更好一些?
    谢谢