dongzhiyi2006 2014-03-31 13:46
浏览 57
已采纳

在nginx中的codeigniter和响应中的php-fpm奇怪的脚本

The setup is: CentOS 6.5 + NGinx + php-fpm running a codeingniter project.

I managed to get it working but I don't understand where is the weird script in the response is originating I expect the result to be clean:

{"auth":true,"success":true,"data":[],"result_count":0}

And not contain the following. Anybody know how to solve this? is it configuration related?

<?


    if ( ! defined('BASEPATH')) exit('No direct script access allowed');


    function remove_http($url = '')
    {
        if ($url == 'http://' OR $url == 'https://')
        {
            return $url;
        }
        $matches = substr($url, 0, 7);
        if ($matches=='http://') 
        {
            $url = substr($url, 7);     
        }
        else
        {
            $matches = substr($url, 0, 8);
            if ($matches=='https://') 
            $url = substr($url, 8);
        }

        return rtrim($url, "/");    


    }


    function resize_img($file,$width,$height=0) {

        /*
         *  general function for resizing images.
         *
         */ 




        $CI =& get_instance();

        $CI->load->library('image_lib');




        $file_name =  $file['file_name'] ;              
        $file_path = "gallery/" . $file_name ;

        $ratio = $file['image_width'] / $file['image_height'] ; ;



        /* Resize the image only if bigger than the 
         * original size . */

        if ($file['image_width'] > $width ) { 

            $cfg2['image_library'] = 'gd2';
            $cfg2['source_image']   = $file_path ;                                                  



            $cfg2['width'] = $width ;


            if ($height==0){

                // auto adjust the height

                $cfg2['maintain_ratio'] = TRUE;
                $cfg2['height'] = $width / $ratio ;             

            }  else $cfg2['height'] = $height ; 


            $CI->image_lib->initialize($cfg2);                                                  
            $CI->image_lib->resize() ; 

        }









    }



    function today() {

        return date("d-m-Y") ; 


    }


    function today_mysql() {

        return date('Y-m-d') ;      

    }



    function current_day () {


        return date ("d") ; 
    }


    function current_month () {

        return date ("m") ; 

    }

    function current_month_year () {

        return date ("m-Y") ;
    }



    function db_2_array($sql_result , $col1 , $col2 , $default = '' ) {

        if ($default) $data = array (0 => $default ) ;

        foreach ($sql_result->result_array() as $row ) {        
            $data [$row[$col1]] = $row[$col2] ;                                 
        }   

        return $data ;      

    }


    function date_2_sql($date) {

        $sql_date = date( 'Y-m-d', strtotime( $date )) ;
        return $sql_date ; 

    }


    function sqldate_2_short($date) {

        return date("d-m",strtotime($date));

    }

    function sqldate_2_med($date) {

        return date("d-m-Y",strtotime($date));

    }


    function sqldate_2_monthyear ( $date ) {

        return date("m-Y",strtotime($date));

    }


    function sqldate_2_long($date) {

        return date("d-m-Y, H:i",strtotime($date));

    }



    function count_days( $a, $b ) 
    { 
        // First we need to break these dates into their constituent parts: 
        $gd_a = getdate( $a ); 
        $gd_b = getdate( $b ); 
        // Now recreate these timestamps, based upon noon on each day 
        // The specific time doesn't matter but it must be the same each day 
        $a_new = mktime( 12, 0, 0, $gd_a['mon'], $gd_a['mday'], $gd_a['year'] ); 
        $b_new = mktime( 12, 0, 0, $gd_b['mon'], $gd_b['mday'], $gd_b['year'] ); 
        // Subtract these two numbers and divide by the number of seconds in a 
        // day. Round the result since crossing over a daylight savings time 
        // barrier will cause this time to be off by an hour or two.

        //return round( abs( $a_new - $b_new ) / 86400 );

        return round( ( $a_new - $b_new ) / 86400 ); 
    }



    function format_text($text) {

        if ($text) { 

            $text = nl2br($text); // add breaks ;       
            $text = ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]","<a href=\"\\0\">\\0</a>", $text); // set links

        } else $text = ' ' ; 

        return $text ; 


    }   






?>{"auth":true,"success":true,"data":[],"result_count":0}
  • 写回答

1条回答 默认 最新

  • douyu2817 2014-04-01 11:07
    关注

    i think check php shorttag is enabled .. or edit your firstline to .. <?php instead of <?

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘