foreach — PHP Loop с Fwrite () и записью в файл

У меня уже есть цикл, который печатает «Мейсон пишется как текст» в текстовый файл results.txt.

Сейчас я работаю над созданием цикла для печати «Десятичное представление m равно 109. Двоичное представление m равно 1101101 Шестнадцатеричное представление m равно 6d Восьмеричное представление m равно 155» для каждой буквы в имени. Я разобрался с этой частью, но мне нужно сделать цикл, который проходит через него для каждой буквы в имени, а затем записывает представление в results.txt.

Я думаю, что мне нужно будет использовать цикл foreach, подобный тому, который я использовал для первого оператора fwrite. Я не могу понять, как его настроить, хотя. Вот что у меня так далеко:

<?php
$name = "mason";
$nameLetterArray = str_split($name);

$results = fopen("results.txt", "w");

$output = " ";

foreach ($nameLetterArray as $nameLetter) {
$output .= $nameLetter." ";
}

fwrite($results, $name." is spelt ".$output);
fclose($results);

//here is what i need the loop to do for each letter in the name and save to
//.txt file
$format = "Decimal representation of $nameLetterArray[0] is %d";
echo sprintf($format, ord($nameLetterArray[0]));
echo "<br>";
$format = "Binary representation of $nameLetterArray[0] is %b";
echo sprintf($format, ord($nameLetterArray[0]));
echo "<br>";
$format = "Hexadecimal representation of $nameLetterArray[0] is %x";
echo sprintf($format, ord($nameLetterArray[0]));
echo "<br>";
$format = "Octal representation of $nameLetterArray[0] is %o";
echo sprintf($format, ord($nameLetterArray[0]));
echo "<br>";

?>

0

Решение

Если вы хотите это после m a s o n Вы можете написать еще один цикл следующим образом:

<?php
$name = "mason";
$nameLetterArray = str_split($name);

$results = fopen("results.txt", "w");

$output = " ";

foreach ($nameLetterArray as $nameLetter) {
$output .= $nameLetter." ";
}

foreach($nameLetterArray as $nameLetter){

$format = "Decimal representation of $nameLetter is %d";
$output.="\n\n".sprintf($format, ord($nameLetter));

$format = "Binary representation of $nameLetter is %b";
$output.="\n\n".sprintf($format, ord($nameLetter));

$format = "Hexadecimal representation of $nameLetter is %x";
$output.="\n\n".sprintf($format, ord($nameLetter));

$format = "Octal representation of $nameLetter is %o";
$output.="\n\n".sprintf($format, ord($nameLetter));

}


//then write the result into the file

fwrite($results, $name." is spelt ".$output);
fclose($results);

//if you want to see the output in the browser replace the \n by <br>
$output=str_replace("\n","<br>",$output);
echo $output;

?>

Я попробовал это, и это работает. пожалуйста, прочитайте даже комментарии внутри кода

1

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]