Я изучаю php и делаю заявление, которое доказывает, что локальная переменная не может быть вызвана вне функции, в которой она определена.
Кажется, я не могу получить разрыв строки в заявлении, но только пробел.
<html>
<head>
<title>Testing Global and Local Variables</title>
</head>
<body>
<?php
//Global varaible called after function
$g_test_string="this is the value in the variable outside the function at a global level!";
function printstring()
{
$l_test_string="this is the value of the variable inside the function at a local level!";
print($l_test_string);
}
//Calling statements
printstring();
echo "\r";
echo 'Global variable value: ' . $g_test_string;
echo 'Local variable value: ' . $l_test_string;
?>
</body>
</html>
Распечатка выглядит так:
this is the value of the variable inside the function at a local level! Global variable value: this is the value in the variable outside the function at a global level! Local variable value:
Я пробовал разрыв между вызовом функции и эхо для глобальной переменной, но только создает пробел, а не разрыв.
Должен быть что-то простое, я представляю.
Большое спасибо
Эндрю
Если вы хотите быть уверены, что разрыв строки совместим с кроссплатформенностью, используйте PHP_EOL
Я обычно использую «\ n». Если вы хотите, чтобы перенос строки отображался в HTML, используйте "<br>"
,
Редактировать в ответ на комментарии:
Вот как вы можете извлечь как можно больше PHP из HTML.
<?php
//Global varaible called after function
$g_test_string="this is the value in the variable outside the function at a global level!";
?>
<html>
<head>
<title>Testing Global and Local Variables</title>
</head>
<body>
<?php
//Calling statements
printstring();
echo "<br>\n";
echo 'Global variable value: ' . $g_test_string."<br>\n";
echo 'Local variable value: ' . $l_test_string."<br>\n";
?>
</body>
</html>
<?php
function printstring()
{
$l_test_string="this is the value of the variable inside the function at a local level!";
print($l_test_string);
}
Где вы хотите разрыв строки в PHP используйте либо <br />
или же \n
Я использовал перерывы для вашей демонстрации: http://www.forumalliance.net/so.php
<html>
<head>
<title>Testing Global and Local Variables</title>
</head>
<body>
<?php
//Global varaible called after function
$g_test_string="this is the value in the variable outside the function at a global level!<br />";
function printstring()
{
$l_test_string="this is the value of the variable inside the function at a local level!<br />";
print($l_test_string);
}
//Calling statements
printstring();
echo "\r";
echo '<br />Global variable value: ' . $g_test_string;
echo '<br />Local variable value: ' . $l_test_string;
?>
</body>
</html>
Как разбить строку отображаемых данных одну за другой в цикле while и переслать в раскрывающийся идентификатор
$que="select * from parties WHERE Item_code='".$_GET['q']."'";
$run=mysql_query($que);
while($row=mysql_fetch_array($run)){
if($row['party_name'] == "")
{
echo "";
}
else
{
if($_GET['type'] == "di")
{
echo $row['Id'];
}
elseif($_GET['type'] == "did")
{
echo $row['party_name'];
}//END IF DI OR DID
}//END IF PARTY NAME BLANK
}//END WHILE