i have scenario where an IF statement is inside FOR loop. i want to break the FOR loop inside IF statement , how to achieve it?
for(i=0;i<5;i++){
if(i==2){
break;
}
}
I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print ...
No comments:
Post a Comment