"Bulletphp 튜토리얼 2"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
(사용자 2명의 중간 판 10개는 보이지 않습니다)
5번째 줄: 5번째 줄:


==index.php 수정==
==index.php 수정==
<source lang='cli'>
{{참고|Bulletphp param 콜백}}
<syntaxhighlight lang='console'>
[root@zetawiki myapi]# vi index.php
[root@zetawiki myapi]# vi index.php
</source>
</syntaxhighlight>
<source lang='php'>
<syntaxhighlight lang='php'>
<?php
<?php
require_once 'vendor/autoload.php';
require_once 'bulletphp/autoload.php';
use Bullet\App;


$app = new App();
$app = new Bullet\App();
$app->path('/input', function($request)use($app) {
$app->path('/input', function($request) use($app) {
$app->param('int', function($request, $input)use($app) {
$app->param('int', function($request, $input) use($app) {
return "정수 [$input]를 입력하셨습니다.\n";
return "정수 [$input]를 입력하셨습니다.\n";
});
});
$app->param('slug', function($request, $input)use($app) {
$app->param('slug', function($request, $input) use($app) {
return "문자열 [$input]를 입력하셨습니다.\n";
return "문자열 [$input]를 입력하셨습니다.\n";
});
});
});
});
echo $app->run(new Bullet\Request());
echo $app->run(new Bullet\Request());
</source>
</syntaxhighlight>


==테스트==
==테스트==
<source lang='cli'>
<syntaxhighlight lang='console'>
[root@zetawiki myapi]# curl http://zetawiki.com/myapi/input/12345
[root@zetawiki myapi]# curl http://localhost/myapi/input/12345
정수 [12345]를 입력하셨습니다.
정수 [12345]를 입력하셨습니다.
</source>
</syntaxhighlight>
<source lang='cli'>
<syntaxhighlight lang='console'>
[root@zetawiki myapi]# curl http://zetawiki.com/myapi/input/-12345
[root@zetawiki myapi]# curl http://localhost/myapi/input/-12345
정수 [-12345]를 입력하셨습니다.
정수 [-12345]를 입력하셨습니다.
</source>
</syntaxhighlight>
<source lang='cli'>
<syntaxhighlight lang='console'>
[root@zetawiki myapi]# curl http://zetawiki.com/myapi/input/123.45
[root@zetawiki myapi]# curl http://localhost/myapi/input/123.45
정수 [123]를 입력하셨습니다.
정수 [123]를 입력하셨습니다.
</source>
</syntaxhighlight>
<source lang='cli'>
<syntaxhighlight lang='console'>
[root@zetawiki myapi]# curl http://zetawiki.com/myapi/input/hello
[root@zetawiki myapi]# curl http://localhost/myapi/input/hello
문자열 [hello]를 입력하셨습니다.
문자열 [hello]를 입력하셨습니다.
</source>
</syntaxhighlight>
<syntaxhighlight lang='console'>
[root@zetawiki myapi]# curl http://localhost/myapi/input/12345hello
문자열 [12345hello]를 입력하셨습니다.
</syntaxhighlight>


==같이 보기==
==같이 보기==
*[[Bulletphp param 콜백]]
*[[Bulletphp 튜토리얼 3]]
*[[Bulletphp 튜토리얼 3]]
*[[Bulletphp 튜토리얼]]
*[[Bulletphp 튜토리얼]]
==참고==
*http://bulletphp.com/docs/param-callbacks/


[[분류: Bulletphp]]
[[분류: Bulletphp]]

2020년 11월 2일 (월) 02:57 기준 최신판

Bulletphp 튜토리얼 2

1 사전 작업[ | ]

2 index.php 수정[ | ]

[root@zetawiki myapi]# vi index.php
<?php
require_once 'bulletphp/autoload.php';

$app = new Bullet\App();
$app->path('/input', function($request) use($app) {
	$app->param('int', function($request, $input) use($app) {
		return "정수 [$input]를 입력하셨습니다.\n";
	});
	$app->param('slug', function($request, $input) use($app) {
		return "문자열 [$input]를 입력하셨습니다.\n";
	});
});
echo $app->run(new Bullet\Request());

3 테스트[ | ]

[root@zetawiki myapi]# curl http://localhost/myapi/input/12345
정수 [12345]를 입력하셨습니다.
[root@zetawiki myapi]# curl http://localhost/myapi/input/-12345
정수 [-12345]를 입력하셨습니다.
[root@zetawiki myapi]# curl http://localhost/myapi/input/123.45
정수 [123]를 입력하셨습니다.
[root@zetawiki myapi]# curl http://localhost/myapi/input/hello
문자열 [hello]를 입력하셨습니다.
[root@zetawiki myapi]# curl http://localhost/myapi/input/12345hello
문자열 [12345hello]를 입력하셨습니다.

4 같이 보기[ | ]

5 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}