English 中文(简体)
在观察阵列时如何避免打字?
原标题:How to avoid typing <pre> when viewing arrays... any ideas?
  • 时间:2010-08-10 11:00:38
  •  标签:
  • php

我经常需要看到阵列中的数据,并使用html的标签:<pre>这样做。 然而,它变得虚幻和令人沮丧,不得不在全部时间打上同一件。

我的问题是,你为避免这种与购买力平价相提并论而采用的方法是什么?

最佳回答

你们应该问,我只是写了简短的职能,以拯救我不得不做这么多的事情。

function pre($option = "open"){                   
  if (is_object($option) || is_array($option)):
    print "<pre>";
    print_r($option);
    print "</pre>";
  else:
    $option=="open"?print "<pre>": print "</pre>";
  endif;
}    

如果你通过一个阵列或一个物体,它将在标签内印制。 如果你只想开门,那就不作争辩。 如果您想要结对,则通过任何其他论点(例如1)。

e.g:

pre($result); //prints in pre tags

pre(); //just prints <pre>
print "hello";
pre(1); //just prints </pre>
问题回答

除了使用<条码>和代号;标签外,还看不出这种格式。 或者,你可以发挥这一作用,而是使用:

function pretty_print(array $array){
  echo  <pre> ;
  print_r($array);
  echo  </pre> ;
}

我们现在可以使用< > > > > > > > > > > > > > > ...... 无需打字。 现在和之后:

Install XDebug。 除了制作<条码>(r和var_dump外,还有其他非常手法。

function pre_($array)
{
  echo  <pre>  . print_r( $array, true ) .  </pre> ;
}

你可以尝试这样的东西。 注

function html_var_dump($obj)
{
   ob_start();
   var_dump($obj);
   $output = htmlentities(ob_get_contents());
   ob_end_clean();
   echo "<pre>$output</pre>";
}

如果你愿意,你可以使用打印机而不是var。

我使用了这一方法。

function d($obj)
{
   ob_start();
   print_r($obj);
   $output = htmlspecialchars(ob_get_clean());
   echo "<pre>$output</pre>";
}

页: 1

如果要印刷阵列,那么我喜欢的骗子之一就是:

header( Content-type: text/plain );
print_r($arr);




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签