Tagged Questions

4
votes
3answers
1k views

simplest, shortest way to count capital letters in a string with php?

I am looking for the shortest, simplest and most elegant way to count the number of capital letters in a given string.
2
votes
2answers
77 views

replacing letters (from a phrase) with images

$q = "my phrase with special chars like úção!?"; while ($i < strlen($q)) { echo '<img src="'.$q[$i].'.png" />'; $i++; } i also tried with switch/case but when i have chars like ç Ç ã â i ...
1
vote
3answers
126 views

Function to return only the capital letter(s!) at the beginning of a string?

I'm trying to retrieve the first couple of capital letters from a string in PHP, but I'm not sure if there's a specific function to do this. Should I perhaps resort to using regex? If so, how? Here's ...
1
vote
4answers
469 views

Capital letters in class name PHP

I have two classes in my system. One is called file and second is File. On my localhost when i instantiate file i get file object, but my friend running the same script gets object of File like the ...
0
votes
1answer
37 views

captcha modify six letters

i have following captcha code: <?php class CaptchaView extends View { private $fontsDir = 'captcha_resources/fonts/'; private $backgroundsDir = 'captcha_resources/backgrounds/'; ...
0
votes
3answers
70 views

PHP making first letter an image

I need an HTML-safe function which will change a first letter of the content to the image source. So if my content will be: "Hello World!" the output will look like: "<img ...
0
votes
1answer
347 views

PHP - MYSQL Search Engine - Matching specific letters from a word in a search box

I am trying to make search engine to match some specific letters from the end of the word I input in a search box, or the first few letters in the the beginning of a word, that I input in the search ...
0
votes
5answers
257 views

Using php to increment letters while cycling through capitilisations

I am working on a project where I need to cycle through letters something like this: a,A,b,B...z,Z,aa,Aa,aA,AA,bb...zz,ZZ... in php. Is it possible to do this in a scalable way?
0
votes
2answers
241 views

How to validate username using regexp?

How validate username using regexp ? For English letters, Numbers and spaces I am using : /^[a-zA-Z]{1}([a-zA-Z0-9]|\s(?!\s)){4,14}[^\s]$/ How can i add arabic letters ?
0
votes
1answer
424 views

PHP imagettftext: bounding boxes of letters superimpose above each other

I'm writing text-images on the fly with PHPs imagettftext, which works fine so far, but I have a very strange problem. We are using a very italicized font and apparently the bounding boxes of later ...