I think I have everything I need to accomplish what i am trying to do, i just don't know how to combine it all. Could someone please tell me where to put what and how to get it to work? Here is what I want and what I have:
I created two functions that I think represent what I am trying to do:
a function that accepts 2, 3, or 4 arguments and return both the sum and the average of the arguments supplied.
a function that takes any sentence string as an argument. The function reports the length of the string and the number of words in the string. The function replaces the words "cat" and "dog" with "meow" and "bark" IF these words exist in the string. The modified string is returned as an array. If cat and dog aren’t found, the function should return the message string "You have no pets".
I want both of these functions to be used in a second PHP file that uses some function calls for the first function and a Redux to get the string to be examined by the second function. I want to make sure to detect whether the value returned by the second function is an array or a string.
Here is my code:
first function:
<?php
function sum($var1, $var2, $var3, $var4)
{
return $var1 + $var2 + $var3 + $var4;
}
function mean($var1, $var2, $var3, $var4)
{
return $var1 + $var2 + $var3 + $var4 / 4;
}
?>
Second function:
<?php
function phptest($input) {
$search = array('meow', 'bark');
$replace = array('cat', 'dog');
$output = str_ireplace($search, $replace, $input, $replace_count);
if ($replace_count === 0) {
return false;
} else {
return explode(' ', $output);
}
}
$result = phptest($input_string);
if ($result === false) {
echo 'You have no pets';
} else {
var_dump($result);
}
?>
page I have to handle my functions:
<?php
require('myfunctions.php');
?>
<form action="" method="post">
<input name="input" type="text" size="20" maxlength="20" />
<input name="submit" type="submit" value="submit" />
</form>
thanks so much!