Jump to content
  • 0

Ужас с регулярными- даже примитив не работает!


yummi
 Share

Question

вот кодик

<?php 
error_reporting(E_ALL^E_NOTICE);
if (!empty($_POST['t']))
{
$text=trim($_POST['t']);
$check_text='/^[a-z]/iu';
if(preg_match($chek_text,$text))
{
echo 'ща будет запрос к БД';
}
else echo 'Сообщение содержит недопустимые символы';
}
?>
<form method="post"><textarea name="t" cols="30" rows="10" ><?php echo $_POST['t']; ?></textarea><input type="submit">
</form>

почему?????????????????????????? это не чесно!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! что не так??? уже всё перепробывала!!!!!!!!!!!!!!!!!!!! или это textarea так влияет -ведь с инпут тайпами всё работает!!!

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Я так понял, производится проверка, является ли первый символ в $text латинской буквой? Модификатор u там ни на что не влияет, как мне кажется, можно и убрать.

Добавь ещё к модификаторам s, чтобы переносы строк улавливались.

Edited by Int
Link to comment
Share on other sites

  • 0

я поменяла на $chech_text='/^[a-z]{3,40}+$/s';

но нифига не работает!!

кстати, что за ошибка Warning: preg_match() [function.preg-match]: Empty regular expression in C:\wamp2\www\test4\index.php on line 7

помоему из-за отсутствия массива в третьем параметре. но разве это влияет на работоспособность скрипта?

Я так понял, производится проверка, является ли первый символ в $text латинской буквой?

почему первый? - от начала строки... но всё равно почемуто не работает.и вот это : $check_text="/^[a-z]$/su";

ой, всё, нашла ошибку. просто их вывод отключён.... у меня разные имена переменных!! ой, я как всегда гений... :D

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy