FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
gitutorial/String Functions/stringcompare.php at training_programs · dresh/gitutorial · GitHub
dresh
/
gitutorial
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
gitutorial
/
String Functions
/
stringcompare.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
29 lines (26 loc) · 412 Bytes
Breadcrumbs
gitutorial
/
String Functions
/
stringcompare.php
Copy path
File metadata and controls
29 lines (26 loc) · 412 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/** Function to compare string */
function
string_comp
(
$
str1
,
$
str2
){
if
(
'
$str1
'
==
'
$str2
'
){
return
true
;
}
else
{
return
false
;
}
}
$
str1
=
"
Hello
"
;
$
str2
=
"
Hello
"
;
if
(
string_comp
(
$
str1
,
$
str2
)){
echo
"
True
"
;
}
else
{
echo
"
False
"
;
}
$
str3
=
"
Hello
"
;
$
str4
=
"
HELLO
"
;
if
(
$
str3
==
$
str4
){
/**case sensitve*/
echo
"
True
"
;
}
else
{
echo
"
False
"
;
}
Back
|
FazBrowse Home
|
New Git URL