>  기사  >  백엔드 개발  >  PHP 사용자 정의 함수의 예

PHP 사용자 정의 함수의 예

WBOY
WBOY원래의
2016-07-25 08:56:51967검색
本文分享一些在php中自定义函数的一些简单例子,有需要的朋友,可以作个参考。

1,php自定义函数的例子

<html>
<head>
<title>定义一个函数</title>
</head>
<body>
<?php
function bighello(){
     print "<h1>HELLO!</h1>";
}
bighello();
?>
 </body>
</html>

2,在页面上打印文本的自定义函数

<HTML>
  <HEAD>
  <TITLE>打印文本-bbs.it-home.org</TITLE>
  </HEAD>
  <BODY>
  <?php
  function textonweb ($content, $fontsize) {
     echo "<FONT SIZE=$fontsize>$content</FONT>";
  }
  textonweb ("A <BR>", 7);
  textonweb ("AA. <BR>", 3);
  textonweb ("AAA. <BR>", 3);
  textonweb ("AAAA! <BR>", 3);
  ?>
  </BODY>
</HTML>

3,声明一个简单的php自定义函数

<?php
  function aFunction(){
      print "音乐是生活的一种方式";
  }
  aFunction();
?>

4,从字符串创建自定义函数

<?
$lambda =create_function('$a,$b','return(strlen($a)-strlen($b));');
$array = array('really long string here,boy', 'this', 'middling length',
               'larger');
usort($array,$lambda);
print_r($array);
?>


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.