首页 > 代码库 > Command-line interface 命令行界面换行

Command-line interface 命令行界面换行

w

 

技术分享

 

 

<?php


$ReadParametersList = array(‘w_start_unix‘, ‘w_count‘, ‘CreatedAfter‘, ‘CreatedBefore‘);
foreach ($ReadParametersList as $w) {
    echo $w . ‘.w<br>‘;
}
foreach ($ReadParametersList as $w) {
    echo $w . ‘.w\n‘;
}
foreach ($ReadParametersList as $w) {
    echo $w . ‘.w\r‘;
}
foreach ($ReadParametersList as $w) {
    echo $w . ‘.w\r\n‘;
}
foreach ($ReadParametersList as $w) {
    echo $w . ".w<br>";
}
foreach ($ReadParametersList as $w) {
    echo $w . ".w\n";
}
foreach ($ReadParametersList as $w) {
    echo $w . ".w\r";
}
foreach ($ReadParametersList as $w) {
    echo $w . ".w\r\n";
}
die();

 

Command-line interface 命令行界面换行