'php'에 해당되는 글 12건
2008. 2. 13. 18:01
[개발자이야기]
보통 쉘프로그램이나 배치프로그램으로 사용자 입력값을 받고 싶을때가 있다.
물론 php로도 훌륭한 스크립트를 만들 수 있는건 당연...
그럴경우 유용하게 사용할 수 있다~~
#!/usr/local/php/bin/php -q <?php function getInput($length = 255) { $fr = fopen("php://stdin", "r"); $input = fgets($fr, $length); $input = rtrim($input); fclose($fr); return $input; } echo '글자를 입력하세요 (10자 이내): '; $text = getInput(10); echo '입력하신 내용은 '.$text."입니다.\n"; ?>
2008. 1. 28. 20:45
[개발자이야기]
php의 strpos와는 좀 틀리지만.,
문제열이 포함되어 있는지의 여부는 아래의 예제로 충분할듯.
#include <stdio.h>
#include <string.h>
main()
{
char string[]="string to search";
char test[]="sear";
/* strstr returns a pointer into 'string'
* if 'test' is found' if not found, NULL
* is returned. */
if (strstr(string, test)) puts("String found");
}