[ create a new paste ] login | about

Link: http://codepad.org/VEBLQcBe    [ raw code | output | fork ]

PHP, pasted on Dec 22:
1
2
3
4
5
6
7
8
<?php

    $string = 'In this sentence I want to explain both, word1 and word2.';
    $terms = array(
        'word1' => '<span title="This is a short description of word1">word1</span>',
        'word2' => '<span title="word2 maybe has something to do with word1">word1</span>',
    );
    echo strtr($string, $terms);


Output:
1
In this sentence I want to explain both, <span title="This is a short description of word1">word1</span> and <span title="word2 maybe has something to do with word1">word1</span>.


Create a new paste based on this one


Comments: