Maison > php教程 > php手册 > le corps du texte

php 根据要求得到字符串的反序

WBOY
Libérer: 2016-06-13 11:36:30
original
1215 Les gens l'ont consulté

php 根据要求得到字符串的反序

/**
 * 根据要求得到字符串的反序
 */

$s = 'abcdefghijklmnopq';
function Reverse_order($str,$start = null,$end = null)
{
   
    $string = '';
    $string1 = '';
    $string2 = '';
    if ($start === null or $end === null)
    {
        for ($i = 0; ($char = $str{$i}) !== '';$i++)
        {
            $string = $char.$string;
        }
        //var_dump($string);
    }
    if ((!is_int($start) or !is_int($end)) and $start !== null and $end !== null)   //将用户输入为数字字符串转化为整型
    {
        //如果是字母或者汉字转化后$start $end 都为0
        $start = (int)($start);
        $end = (int)($end);
        if ($start         {
            trigger_error("起始值不能小于0",256);
            return false;
        }
    }
    if (is_int($start) and is_int($end))
    {
        for ($j = 0;$j         {
            $string1 .= $str{$j};
        }
        for ($i = $start;$i         {
            $string = $str{$i}.$string;
        }
        for ($k = $end; ($char = $str{$k}) !== ''; $k++)
        {
            $string2 .= $str{$k};
        }
    }
    /*if (!is_int($start ) or !is_int($end))
    {
        trigger_error("请输入数字",512);
        return false;
    }*/
    return $string1.$string.$string2;
}
$start = 0;
var_dump(
Reverse_order($s,$start,10),
Reverse_order($s,5,15),
Reverse_order($s,'10','15'),
//Reverse_order($s,'-5','15'),  //为负数的字符串转化后是负数
Reverse_order($s,'df','sd'),
Reverse_order($s,'的','地方'),  //不是为数字的字符串转化为整型后的是指都为零
Reverse_order($s)
);

作者:k7gxn56

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Recommandations populaires
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!