Skip to content

Instantly share code, notes, and snippets.

@modos
Created April 29, 2023 06:19
Show Gist options
  • Save modos/a73d9041e0cb4b0d5a47d7549cab2ce3 to your computer and use it in GitHub Desktop.
Save modos/a73d9041e0cb4b0d5a47d7549cab2ce3 to your computer and use it in GitHub Desktop.
سلام کدکاپ ۶!
<?php
function sayHello(array $words, int $reverseIndex): void
{
$reversedWord = strrev($words[$reverseIndex]);
$result = implode(' ', $words);
$result = str_replace($words[$reverseIndex], $reversedWord, $result);
echo $result . "\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment