cleaning up notes
This commit is contained in:
@@ -437,15 +437,8 @@ class ReportsController extends Controller
|
||||
$handle = fopen('php://output', 'w');
|
||||
stream_set_timeout($handle, 2000);
|
||||
|
||||
//this is handling emdash encoding, and is preventing that character from becoming something like —
|
||||
fprintf($handle, chr(0xEF).chr(0xBB).chr(0xBF));
|
||||
|
||||
//U+00EC is accent grave in model number
|
||||
//U+00EE is circumflex in model name
|
||||
//why is the same character a value of 2 off of each other?
|
||||
//why are we all getting different outputs for this emdash?
|
||||
//exporting and opening with a text editor doesn't fuck it up? so its NOT on export. It's an Excel problem.
|
||||
|
||||
$header = [];
|
||||
|
||||
if ($request->filled('id')) {
|
||||
|
||||
@@ -19,7 +19,6 @@ class CreateModelsTable extends Migration
|
||||
$table->integer('category_id')->nullable();
|
||||
$table->timestamps();
|
||||
$table->engine = 'InnoDB';
|
||||
//making a note here. Interestingly we state the model and modelno cloumns as strings. Tableplus stores as a var_string.
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user