blob: f39b98de75872d7d87050fb4bd6aef8348049489 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
use strict;
use warnings FATAL => 'all';
use Apache::Test;
use Apache::TestRequest;
plan tests => 1, need_php;
my $expected = <<EXPECT;
<>"&��
<>"&åÄ
EXPECT
my $result = GET_BODY "/php/strings4.php";
ok $result eq $expected;
|