本文整理汇总了PHP中test1函数的典型用法代码示例。如果您正苦于以下问题:PHP test1函数的具体用法?PHP test1怎么用?PHP test1使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了test1函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: test1
function test1($i)
{
echo $i, '<br/>';
//1
++$i;
if ($i <= 4) {
test1($i);
//test1(2)
/*
echo $i,'<br/>';//2
++$i;
if($i<=10){
test1($i);//test1(3)
echo $i,'<br/>';//3
++$i;
if($i<=4){
test1($i);//test1(4)
echo $i,'<br/>';//4
++$i;
if($i<=4){
test1($i);
}
}
}
*/
}
}
示例2: run
public function run()
{
$r = 0;
for ($i = 0; $i < self::DEFAULT_ITERATIONS; $i++) {
$r += test1() + test2(1, 2, 3) + self::test1() + self::test2(1, 2, 3);
}
}
示例3: content_5236ae0304b8c2_40162505
function content_5236ae0304b8c2_40162505($_smarty_tpl)
{
?>
<h1>自定义函数yu 以block 方式显示</h1>
<?php
$_smarty_tpl->smarty->_tag_stack[] = array('yu2', array('times' => "5", 'size' => "5", 'color' => "blue"));
$_block_repeat = true;
echo test2(array('times' => "5", 'size' => "5", 'color' => "blue"), null, $_smarty_tpl, $_block_repeat);
while ($_block_repeat) {
ob_start();
?>
hello world<?php
$_block_content = ob_get_clean();
$_block_repeat = false;
echo test2(array('times' => "5", 'size' => "5", 'color' => "blue"), $_block_content, $_smarty_tpl, $_block_repeat);
}
array_pop($_smarty_tpl->smarty->_tag_stack);
?>
<h1>自定义函数yu 以function 方式显示</h1>
<?php
echo test1(array('times' => "5", 'size' => "5", 'content' => "hello 栩坚", 'color' => "red"), $_smarty_tpl);
?>
<?php
}
开发者ID:yuxujian,项目名称:YuNote,代码行数:27,代码来源:729987baba90315a0fe9ccb37578627448444efc.file.example7.tpl.php
示例4: test
function test($test)
{
test1();
TeSt1();
$test();
$test = strtolower($test);
$test(1, 2, 3);
}
示例5: test1
function test1($path = '', $lv = 0)
{
file_exists($path) or die($path . ' is not find');
$head = opendir($path) or die('open the dir is error');
while (false !== ($file = readdir($head))) {
$sub_dir = $path . '\\' . $file;
if ($file == '.' || $file == '..') {
continue;
} else {
if (is_dir($sub_dir)) {
echo str_repeat('-', $lv) . $file . "\n";
test1($sub_dir, $lv + 1);
} else {
echo str_repeat('-', $lv) . $file . "\n";
}
}
}
}
示例6: unset
//5
echo '<hr/>';
$j = 10;
echo $i, '<br/>';
//10
unset($i);
//
var_dump($i);
//NULL
echo $j, '<br/>';
function test1(&$i)
{
$i = 15;
}
$i = 2;
test1($i);
var_dump($i);
//15
echo '<hr/>';
/*
Fatal error: Only variables can be passed by reference in
F:\psd1507\study\PHPCORE\day08\demo\func4.php on line 50
*/
// test1(3);
$filename = '1.txt.jpeg';
/*
Strict Standards: Only variables should be passed by reference in F:\psd1507\study\PHPCORE\day08\demo\func4.php on line 58
jpeg
*/
$arr = explode('.', $filename);
echo end($arr);
示例7: test1
[file]
<?php
// test1
echo "test1 (PassedByCopy):\n";
function test1($x)
{
$x[] = 4;
var_dump($x);
return $x;
}
$x = array();
$x[0] = 1;
$x[1] = 2;
$x[2] = 3;
unset($x[2]);
$x = test1($x);
$x[] = 5;
var_dump($x);
// test2
echo "\n\ntest2 (ReturnedByCopy):\n";
function test2()
{
$x = array(1, 2, 3);
unset($x[2]);
var_dump($x);
return $x;
}
$x = test2($x);
$x[] = 4;
var_dump($x);
// test3
示例8: array
$favorites = array('favcolor' => 'red', 'favmovie' => 'shawshank', 'favsong' => 'Yellow submarine');
function test1($favorites)
{
$buf = '';
foreach ($favorites as $fav) {
$buf .= $fav;
}
echo 'Test foreach($arr as $val)' . "<br>\n";
echo 'result: ' . ($buf === 'redshawshankYellow submarine' ? 'pass' : 'fail') . "<br><br>\n\n";
}
function test2($favorites)
{
$buf = '';
foreach ($favorites as $key => $val) {
$buf .= "{$key}: {$val},";
}
echo 'Test foreach($arr as $key => $val)' . "<br>\n";
echo 'result: ' . ($buf === 'favcolor: red,favmovie: shawshank,favsong: Yellow submarine,' ? 'pass' : 'fail') . "<br><br>\n\n";
}
function test3()
{
$arr = array(1, 2, 3);
foreach ($arr as $i) {
$i += 1;
}
echo 'Test foreach($arr as $val) { $val += 1 }' . "<br>\n";
echo 'result: ' . ($i == 4 ? 'pass' : 'fail') . "<br><br>\n\n";
}
test1($favorites);
test2($favorites);
test3();
示例9: test1
<?php
function test1(&$abc) : string
{
return $abc;
}
function &test2(int $abc) : string
{
return $abc;
}
function &test3(int &$abc) : string
{
return $abc;
}
$a = 123;
var_dump(test1($a));
var_dump($a);
var_dump(test2($a));
var_dump($a);
var_dump(test3($a));
var_dump($a);
示例10: Benchmark
<?php
use Lavoiesl\PhpBenchmark\Benchmark;
use Ovr\Bench\AssignOrNot\ReturnAfterAssignProperty;
use Ovr\Bench\AssignOrNot\ReturnWithoutAfterAssignProperty;
include_once __DIR__ . '/vendor/autoload.php';
$benchmark = new Benchmark();
function proxy($a, $b, $c)
{
return true;
}
function test1()
{
return proxy(...func_get_args());
}
function test2(...$args)
{
return proxy(...$args);
}
$benchmark->add('...func_get_args()', function () use(&$str) {
return test1(1, 2, 3);
});
$benchmark->add('....$args', function () use(&$str) {
return test2(1, 2, 3);
});
$benchmark->setCount(10000000);
$benchmark->run();
示例11: test2
function test2($a, $b)
{
test1($b, $a);
}
示例12: smarty_core_load_plugins
<?php
/* Smarty version 2.6.27, created on 2013-09-16 20:17:57
compiled from example7.tpl */
require_once SMARTY_CORE_DIR . 'core.load_plugins.php';
smarty_core_load_plugins(array('plugins' => array(array('function', 'yu', 'example7.tpl', 3, false), array('block', 'yu2', 'example7.tpl', 6, false))), $this);
?>
<h1>自定义函数yu 以function 方式显示</h1>
<?php
echo test1(array('times' => '5', 'size' => '5', 'content' => "hello 栩坚", 'color' => 'red'), $this);
?>
<h1>自定义函数yu 以block 方式显示</h1>
<?php
$this->_tag_stack[] = array('yu2', array('times' => '5', 'size' => '5', 'color' => 'blue'));
$_block_repeat = true;
test2($this->_tag_stack[count($this->_tag_stack) - 1][1], null, $this, $_block_repeat);
while ($_block_repeat) {
ob_start();
?>
hello world<?php
$_block_content = ob_get_contents();
ob_end_clean();
$_block_repeat = false;
echo test2($this->_tag_stack[count($this->_tag_stack) - 1][1], $_block_content, $this, $_block_repeat);
}
array_pop($this->_tag_stack);
示例13: sumArray
<?php
function sumArray($intArray)
{
$total = 0;
foreach ($intArray as $value) {
$total += $value;
}
return $total;
}
function test1(Form $form)
{
return 1;
}
function test2(array $array)
{
return sumArray($array);
}
$test1 = test1(null);
assert($test1, 1);
$testArray = array(1, 2, 3);
$test2 = test2($testArray);
assert($test2, 6);
testEnd();
示例15: test1
<?php
function test1()
{
$a = array(__FUNCTION__, __LINE__);
return $a;
}
function test2()
{
$a = array(__FUNCTION__, __LINE__);
return $a;
}
var_dump(test1());
var_dump(test2());