Möchte bei einer string ausgabe zeilennumern ausgeben
hier mein Code
Jetzt hab ich das problem das stadt 15 Zeilen 45 Zeilen angezeigt wird
MFG Ascharan thx für eure Hilfe
hier mein Code
PHP-Code:
function linenum($text)
{
$counter=1;
$lines = "";
$text = explode(" ", $text);
$l=count($text);
while($thisone = $counter<=$l)
{
if ($thisone == "\n")
{
$lines .= $counter . "<br />";
$counter++;
}
}
$text=implode(" ", $text);
//highlight contents
$contents = $text;
//print output (you could as well return now)
print '<table align="center" bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0">
<tr>
<td bgcolor="#A4A4A4" width="5px"></td>
<td bgcolor="#A4A4A4" ><code>' .$lines. '</code></td>
<td bgcolor="#A4A4A4" width="5px"></td>
<td width="5px"></td>
<td><div><code>' .$contents. '</code></div></td>
</tr>
</table>';
}
$textstring = '
// Windows Basis Aplikation <myApp.cpp>
#include <windows.h>
#include <commctrl.h>
#pragma comment(lib,"Comctl32.lib")
#define INCTIMERID1 1
int progress = 0;
static int PrevWndProcProzess;
HWND hwnd, hwndProgress;
LRESULT CALLBACK ProgressWndProc(HWND, UINT, WPARAM, LPARAM);
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);';
//für das Break
$string_mod=nl2br($textstring);
//aufruf meiner Funktion
linenum($string_mod);
MFG Ascharan thx für eure Hilfe
Kommentar