-1
votes
1answer
33 views

php parse error, str_replace values in array [closed]

I'm trying to make a cool php function to replace stuff but I get parse error for not obvious reason. Am I missing something ? error_reporting(E_ALL); $array_pairs = array( '{{simple}}' => ...
0
votes
2answers
100 views

php file_get_contents() str_replace   with “”

I am having problem with Google's Currency api. Data I am receiving contains: {lhs: "1000 Euros",rhs: "111 844.933 Serbian dinars",error: "",icc: true} where "111 844.933" is actually "111*& ...
0
votes
2answers
92 views

strtolower and similar functions with wordpress php

Hi am trying to figure out how to use the strolower function and strtolower + str_replace function with the following code - <?php echo get_the_author_meta('custom_field_35', $user->ID); ?> ...
0
votes
2answers
93 views

PHP Replace chars by functions

I try change characters by functions <?php $string = "Hi everybody people [gal~images/articles~100~100~4] here other imagen [gal~images/products~100~100~3]"; $regex = "/\[(.*?)\]/"; ...
0
votes
2answers
147 views

PHP file_get_contents then replace string in a function

**User_Tpl.html** <html><head></head> <body> Hello {NAME}, Business name : {BUSINESS_NAME}. Tel : {TELEPHONE}. Mob : {MOBILE}. </body> </html> function ...
-3
votes
4answers
59 views

Why does this fail? [closed]

Why can't i do a str_replace function this "\"? My string when transferred via get comes up with this infront of every 's. When i try replacing this away, it comes up with an error page. Any ...
0
votes
2answers
1k views

replace multiple placeholders with php?

i have a function that sends out site emails (using phpmailer), what i want to do is basically for php to replace all the placheholders in the email.tpl file with content that i feed it. Problem for ...
1
vote
6answers
158 views

PHP Str_replace for echo function

The following function is part of code written into the core of a plugin I am reverse engineering. The problem with it is that I need to do an str_replace on it and I cannot because it is already set ...
0
votes
0answers
235 views

Problem with str_replace in wordpress shortcode function?

The other day I was trying to write a short-code function for a WordPress 3.2.1 blog, by which I could enable authors to insert html span tags into post titles in single post view (i.e., insertion ...
0
votes
3answers
106 views

Ambiguity with str_replace case or replacement order

Having strange problem with str_replace. Here's my code: function replace_text($text) { $array = array( ':big' => 'BIG', ':bigs' => 'BIIIGSS', ); The problem ...